home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / Convert_VB339301182001.psc / ODL Converter / Classes / SCLangEngine.cls < prev    next >
Encoding:
Visual Basic class definition  |  2001-11-07  |  1002 b   |  36 lines

  1. VERSION 1.0 CLASS
  2. BEGIN
  3.   MultiUse = -1  'True
  4.   Persistable = 0  'NotPersistable
  5.   DataBindingBehavior = 0  'vbNone
  6.   DataSourceBehavior  = 0  'vbNone
  7.   MTSTransactionMode  = 0  'NotAnMTSObject
  8. END
  9. Attribute VB_Name = "SCLangEngine"
  10. Attribute VB_GlobalNameSpace = False
  11. Attribute VB_Creatable = False
  12. Attribute VB_PredeclaredId = False
  13. Attribute VB_Exposed = False
  14. Option Explicit
  15. Private r_gslLanguage As SCLanguage
  16.  
  17. Public Property Get Language() As SCLanguage
  18.     Set Language = r_gslLanguage
  19. End Property
  20.  
  21. Public Property Set Language(ByVal v_gslLanguage As SCLanguage)
  22.     Set r_gslLanguage = v_gslLanguage
  23. End Property
  24.  
  25. Friend Function LexicalParse(ByVal Expression As String) As LexicalResult
  26.     
  27. End Function
  28.  
  29. Friend Function SemanticParse(LexicalInput As LexicalResult) As SemanticResult
  30.     
  31. End Function
  32.  
  33. Friend Function StandardParse(ByVal Expression As String) As SemanticResult
  34.     StandardParse = SemanticParse(LexicalParse(Expression))
  35. End Function
  36.